home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / comt010d.zip / COMTSRC.ZIP / HELLO.ASM < prev    next >
Assembly Source File  |  1991-11-25  |  150b  |  14 lines

  1. .model tiny
  2. .code
  3. org 100h
  4. Top:
  5. mov ah,9
  6. mov dx,offset hello
  7. int 21h
  8. mov ax,4c00h
  9. int 21h
  10.  
  11. hello db 'Hello, World!',0dh,0ah,'$'
  12. end Top
  13.  
  14.